home *** CD-ROM | disk | FTP | other *** search
- /*
- File: ShlMain.h
-
- Contains: just enough to create and run a SOM Shell object
-
- Owned by: Tantek Çelik
-
- Copyright: © 1994 - 1995 by Apple Computer, Inc., all rights reserved.
-
- Change History (most recent first):
-
- <3> 5/25/95 jpa Added #pragma import
- <2> 8/16/94 TÇ #1181231 Settings & ShPlugIn were not being
- generated correctly
- <1> 8/11/94 eeh first checked in
-
- To Do:
- In Progress:
-
- */
-
- #ifndef _SHLMAIN_
- #define _SHLMAIN_
-
-
- #ifdef PRAGMA_IMPORT_SUPPORTED
- #pragma import on
- #endif
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
- int ShellMain();
-
- #ifdef __cplusplus
- }
- #endif
-
- #ifdef PRAGMA_IMPORT_SUPPORTED
- #pragma import off
- #endif
-
- #endif